@font-face {
    font-family: prompt;
    src: url(converted-fonts/Prompt-SemiBold.woff);
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: prompt;
    overflow-x: hidden;

    
}
.Heroo{
    margin-left: 2rem;
    margin-top: 2rem;
    margin-bottom: 5rem;
}
.Hero-pp p{
    color: #818181;
}
.containerimg {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10rem;
    opacity: 0;
    transform: translateY(-20px);
    animation: f 2s cubic-bezier(0.19, 1, 0.22, 1) forwards;
    animation-delay: 100ms
}
@keyframes f{
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

.imgs {
    position: relative;
    display: inline-block;
    border-radius: 20px;
}

.imgs img {
    width: 300px;
    height: auto;
    border-radius: 20px;
    transition: 0.5s ease;
    display:block;
    box-shadow: 0 14px 15px rgba(0,0,0,0.3);
}
.imgs:hover img {
    filter: brightness(50%);
    transform: scale(1.05);
}

.text1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgb(255, 255, 255);
    font-size: 10px;
    font-weight: bold;
    transition: 0.5s ease;
    opacity: 0;
    z-index: 2;
    text-align: center;
}
.imgs:hover .text1 {
    opacity: 1;
}
.text2{
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 10px;
    transition: 0.5s ease;
    opacity: 0;
    z-index: 2;
    text-align: center;
}
.imgs:hover .text2 {
    opacity: 1;
}
header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 2%;
    background: linear-gradient(to right,#d2f3c2, #ffffff);
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.Heromenu{
    display: flex;
    flex-direction: column;
    margin-top: 1rem;
}
.Heromenu p{
    margin-left: 1rem;
    color: rgba(142, 142, 142, 0.9);
}
.logo{
    display: flex;
}
.logo h2{
    display: flex;
    align-items: center;
    margin-left: 1rem;
}
.logo img {
    margin-left: 1rem;
    display: flex;
    width: 80px;
    height: auto;
    object-fit: cover;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    z-index: 999;
}

.nav-links li a {
    text-decoration: none;
    color: #000000;
    font-weight: 500;
    transition: ease-out color 0.3s;
}

.nav-links li a:hover {
    color: #00ff37;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: #03ce21;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.toggle div:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.toggle div:nth-child(2) {
    opacity: 0;
}

.hamburger.toggle div:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}
@media screen and (max-width: 1200px) {
    .nav-links {
        position: absolute;
        top: 70px;
        right: -220px; 
        background: #a5fcc0;
        flex-direction: column;
        width: 200px;
        padding: 20px;
        border-radius: 8px 0 0 8px;
        box-shadow: -2px 2px 10px rgba(0,0,0,0.1);
        transition: right 0.4s ease;
        display: flex;
    }

    .nav-links.active {
        right: 0; 
    }

    .hamburger {
        display: flex;
    }
    .logo img {
        width: 120px;
    }
}
    footer{
      padding:16px;
      background:#edfbf3;
      text-align:center;
      font-size:14px;
      color:#6b7280;
    }
@media screen and (max-width: 1200px){
    .Heromenu h2{
    font-size: 20px;
    align-items: center;
    line-height: 1.5rem;
    }
    .Heromenu p{
    font-size: 10px;
    align-items: center;
    }
    
}